home *** CD-ROM | disk | FTP | other *** search
/ Amiga Game-Power / Amiga Game-Power.iso / anwendungen / disk salv / memtrace / mem.h < prev    next >
C/C++ Source or Header  |  1994-05-20  |  366b  |  16 lines

  1. /*
  2.  * mem.h -- this file contains macros to take over AllocMem() and
  3.  *    FreeMem();
  4.  * (c)1988 Jojo Wesener
  5.  * NOTE: do not include this file in mem.c
  6.  */
  7.  
  8. #ifdef MEMTRACE
  9.  
  10. #define AllocMem(amt,type)    alloctrack(amt,type,__FILE__,__FUNC__,__LINE__)
  11. #define FreeMem(addr,amt)    freetrack(addr,amt,__FILE__,__FUNC__,__LINE__)
  12.  
  13. extern char * alloctrack();
  14.  
  15. #endif MEMTRACE
  16.